a5be10d11b6b7077ea16a4bd87d4ea422913f326,src/com/google/android/gms/location/LocationClient.java,LocationClient,LocationClient,#Context#ConnectionCallbacks#,13

Before Change


    public LocationClient(Context context, ConnectionCallbacks callbacks) {
        googleApiClient = new GoogleApiClient.Builder(context)
                .addApi(LocationServices.API)
                .addConnectionCallbacks(new ForwardConnectionCallbacks(callbacks))
                .build();
    }

    @Override

After Change


                          OnConnectionFailedListener connectionFailedListener) {
        super(new GoogleApiClient.Builder(context)
                .addApi(LocationServices.API)
                .addConnectionCallbacks(new ForwardConnectionCallbacks(callbacks))
                .addOnConnectionFailedListener(new ForwardConnectionFailedListener(connectionFailedListener))
                .build());
    }

    public Location getLastLocation() {